home *** CD-ROM | disk | FTP | other *** search
/ Gigarom 1 / Gigarom Macintosh Archives (Quantum Leap)(CDRM1080320)(1993).iso / FILES / DEV / I-Z / ViewIt™ Shareware.sea / ViewIt™ 2.04 Shareware / Projects / C Demos / MinimumLC.c < prev    next >
C/C++ Source or Header  |  1992-08-04  |  318b  |  15 lines

  1. /* Minimum LC Demonstration Program */
  2. /* ©FaceWare 1991-92.  All Rights Reserved. */
  3.  
  4. #include "FaceStorLC.h"
  5. extern struct FaceRec fRec;
  6.  
  7. main()
  8. {
  9.     strcpy(fRec.uName, "Minimum.Rsrc");
  10.     FaceIt(0L,DoInit,0L,0L,0L,0L);
  11.     FaceIt(0L,HlpWnd,0L,0L,10L,10L);  /* optional */
  12.     for (;;) {
  13.         FaceIt(0L,DoLoop,0L,0L,0L,0L);
  14.         }
  15. }